← Index
NYTProf Performance Profile   
For ../prof.pl
  Run on Wed Dec 14 16:10:05 2022
Reported on Wed Dec 14 16:12:58 2022

Filename(eval 435)[/Users/ether/.perlbrew/libs/36.0@std/lib/perl5/Sub/Quote.pm:3]
StatementsExecuted 156062 statements in 166ms
Eval Invoked At/Users/ether/.perlbrew/libs/36.0@std/lib/perl5/Sub/Quote.pm line 3
Sibling evals1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
421822158ms256msJSON::Schema::Modern::Error::::newJSON::Schema::Modern::Error::new
11128µs35µsJSON::Schema::Modern::Error::::BEGIN@82JSON::Schema::Modern::Error::BEGIN@82
11111µs29µsJSON::Schema::Modern::Error::::BEGIN@14.335JSON::Schema::Modern::Error::BEGIN@14.335
1117µs21µsJSON::Schema::Modern::Error::::BEGIN@106JSON::Schema::Modern::Error::BEGIN@106
1115µs12µsJSON::Schema::Modern::Error::::BEGIN@126JSON::Schema::Modern::Error::BEGIN@126
1115µs5µsJSON::Schema::Modern::Error::::BEGIN@19.336JSON::Schema::Modern::Error::BEGIN@19.336
1114µs13µsJSON::Schema::Modern::Error::::BEGIN@111JSON::Schema::Modern::Error::BEGIN@111
1114µs11µsJSON::Schema::Modern::Error::::BEGIN@121JSON::Schema::Modern::Error::BEGIN@121
1114µs15µsJSON::Schema::Modern::Error::::BEGIN@77JSON::Schema::Modern::Error::BEGIN@77
1113µs11µsJSON::Schema::Modern::Error::::BEGIN@116JSON::Schema::Modern::Error::BEGIN@116
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1{
222µs my $_QUOTED = ${$_[1]->{"\$_QUOTED"}};
311µs my $_UNQUOTED = ${$_[1]->{"\$_UNQUOTED"}};
410s my $isa_check_for_error = ${$_[1]->{"\$isa_check_for_error"}};
510s my $isa_check_for_absolute_5fkeyword_5flocation = ${$_[1]->{"\$isa_check_for_absolute_5fkeyword_5flocation"}};
611µs my $coerce_for_absolute_5fkeyword_5flocation = ${$_[1]->{"\$coerce_for_absolute_5fkeyword_5flocation"}};
710s my $isa_check_for_keyword = ${$_[1]->{"\$isa_check_for_keyword"}};
810s my $coerce_for_exception = ${$_[1]->{"\$coerce_for_exception"}};
910s my $isa_check_for_keyword_5flocation = ${$_[1]->{"\$isa_check_for_keyword_5flocation"}};
1010s my $isa_check_for_mode = ${$_[1]->{"\$isa_check_for_mode"}};
1110s my $isa_check_for_exception = ${$_[1]->{"\$isa_check_for_exception"}};
1210s my $isa_check_for_instance_5flocation = ${$_[1]->{"\$isa_check_for_instance_5flocation"}};
13 package JSON::Schema::Modern::Error;
14244µs247µs
# spent 29µs (11+18) within JSON::Schema::Modern::Error::BEGIN@14.335 which was called: # once (11µs+18µs) by Sub::Quote::_clean_eval at line 14
no warnings 'closure';
# spent 29µs making 1 call to JSON::Schema::Modern::Error::BEGIN@14.335 # spent 18µs making 1 call to warnings::unimport
15
# spent 256ms (158+97.1) within JSON::Schema::Modern::Error::new which was called 4218 times, avg 61µs/call: # 4217 times (158ms+97.1ms) by JSON::Schema::Modern::Utilities::E at line 227 of JSON/Schema/Modern/Utilities.pm, avg 61µs/call # once (38µs+17µs) by JSON::Schema::Modern::Utilities::E at line 177 of Sub/Defer.pm
sub new {
16 ($_QUOTED,$_UNQUOTED) if 0;
17# BEGIN quote_sub PRELUDE
18package JSON::Schema::Modern::Error;
19
# spent 5µs within JSON::Schema::Modern::Error::BEGIN@19.336 which was called: # once (5µs+0s) by Sub::Quote::_clean_eval at line 24
BEGIN {
2010s $^H = 2018;
2111µs ${^WARNING_BITS} = "UUUUUUUUUUUUUUUUUUUU";
2213µs %^H = (
23 );
241176µs15µs}
# spent 5µs making 1 call to JSON::Schema::Modern::Error::BEGIN@19.336
25# END quote_sub PRELUDE
2642172.06ms my $invoker = CORE::shift();
2742172.82ms my $class = CORE::ref($invoker) ? CORE::ref($invoker) : $invoker;
2842172.67ms if ($class ne "JSON::Schema::Modern::Error") {
29 if ($Moo::MAKERS{$class}) {
30 if ($Moo::MAKERS{$class}{constructor}) {
31 package JSON::Schema::Modern::Error;
32 return $invoker->SUPER::new(@_);
33 }
34 Moo->_constructor_maker_for($class);
35 return $invoker->new(@_);
36 } elsif ($INC{"Moose.pm"} and my $meta = Class::MOP::get_metaclass_by_name($class)) {
37 return $meta->new_object(
38 $class->can("BUILDARGS") ? $class->BUILDARGS(@_)
39 : $class->Moo::Object::BUILDARGS(@_)
40 );
41 }
42 }
43 my $args = scalar @_ == 1
44 ? CORE::ref $_[0] eq 'HASH'
45421715.6ms ? { %{ $_[0] } }
46 : Carp::croak("Single parameters to new() must be a HASH ref"
47 . " data => ". $_[0])
48 : @_ % 2
49 ? Carp::croak("The new() method for $class expects a hash reference or a"
50 . " key/value list. You passed an odd number of arguments")
51 : {@_}
52 ;
5342179.27ms if (my @missing = grep !exists $args->{$_}, "error", "instance_location", "keyword", "keyword_location") {
54 Carp::croak("Missing required arguments: ".CORE::join(', ', sort @missing));
55 }
5642172.99ms my $new = bless({}, $class);;
5742172.27ms(exists $args->{"absolute_keyword_location"} and ($new->{"absolute_keyword_location"} = scalar do { my $value = do {
5842179.71ms local $Method::Generate::Accessor::CurrentAttribute = {
59 init_arg => "absolute_keyword_location",
60 name => "absolute_keyword_location",
61 step => "coercion",
62 };
6342173.15ms (my $_return),
64 (my $_error), (my $_old_error = $@);
6542173.16ms (eval {
66 ($@ = $_old_error),
67 ($_return =
68421714.3ms421790.1ms$coerce_for_absolute_5fkeyword_5flocation->($args->{"absolute_keyword_location"})),
# spent 90.1ms making 4217 calls to JSON::Schema::Modern::Error::__ANON__[JSON/Schema/Modern/Error.pm:39], avg 21µs/call
69 1
70 } or
71 $_error = CORE::ref $@ ? $@ : "coercion for \"absolute_keyword_location\" failed: ".$@);
7242173.05ms ($@ = $_old_error),
73 (defined $_error and CORE::die $_error);
7442174.90ms $_return;
75}
76;
771265321.4ms84364.33ms
# spent 15µs (4+11) within JSON::Schema::Modern::Error::BEGIN@77 which was called: # once (4µs+11µs) by Sub::Quote::_clean_eval at line 77
(do { no warnings "void"; package Type::Tiny; ((Scalar::Util::blessed($value) and $value->isa(q[Mojo::URL]))) or Type::Tiny::_failed_check($isa_check_for_absolute_5fkeyword_5flocation, "InstanceOf[\"Mojo::URL\"]", $value, "attribute_name","absolute_keyword_location","attribute_step","isa check","mgaca","0","varname","\$args->{\"absolute_keyword_location\"}"); $value }),
# spent 2.37ms making 4217 calls to Scalar::Util::blessed, avg 562ns/call # spent 1.94ms making 4217 calls to UNIVERSAL::isa, avg 459ns/call # spent 15µs making 1 call to JSON::Schema::Modern::Error::BEGIN@77 # spent 11µs making 1 call to warnings::unimport
78 $value
79}
80)),
8142171.87ms(exists $args->{"error"} and ($new->{"error"} = scalar do { my $value = $args->{"error"};
82168709.45ms242µs
# spent 35µs (28+7) within JSON::Schema::Modern::Error::BEGIN@82 which was called: # once (28µs+7µs) by Sub::Quote::_clean_eval at line 82
(do { no warnings "void"; package Type::Tiny; (do { package Type::Tiny; defined($value) and do { ref(\$value) eq 'SCALAR' or ref(\(my $val = $value)) eq 'SCALAR' } }) or Type::Tiny::_failed_check($isa_check_for_error, "Str", $value, "attribute_name","error","attribute_step","isa check","mgaca","0","varname","\$args->{\"error\"}"); $value }),
# spent 35µs making 1 call to JSON::Schema::Modern::Error::BEGIN@82 # spent 7µs making 1 call to warnings::unimport
83 $value
84}
85)),
86(exists $args->{"exception"} and ($new->{"exception"} = scalar do { my $value = do {
87 local $Method::Generate::Accessor::CurrentAttribute = {
88 init_arg => "exception",
89 name => "exception",
90 step => "coercion",
91 };
92 (my $_return),
93 (my $_error), (my $_old_error = $@);
94 (eval {
95 ($@ = $_old_error),
96 ($_return =
97$coerce_for_exception->($args->{"exception"})),
98 1
99 } or
100 $_error = CORE::ref $@ ? $@ : "coercion for \"exception\" failed: ".$@);
101 ($@ = $_old_error),
102 (defined $_error and CORE::die $_error);
103 $_return;
104}
105;
106285µs235µs
# spent 21µs (7+14) within JSON::Schema::Modern::Error::BEGIN@106 which was called: # once (7µs+14µs) by Sub::Quote::_clean_eval at line 106
(do { no warnings "void"; package Type::Tiny; ((Scalar::Util::blessed($value) and $value->isa(q[JSON::PP::Boolean]))) or Type::Tiny::_failed_check($isa_check_for_exception, "InstanceOf[\"JSON::PP::Boolean\"]", $value, "attribute_name","exception","attribute_step","isa check","mgaca","0","varname","\$args->{\"exception\"}"); $value }),
# spent 21µs making 1 call to JSON::Schema::Modern::Error::BEGIN@106 # spent 14µs making 1 call to warnings::unimport
107 $value
108}
109)),
11042172.12ms(exists $args->{"instance_location"} and ($new->{"instance_location"} = scalar do { my $value = $args->{"instance_location"};
111168706.79ms222µs
# spent 13µs (4+9) within JSON::Schema::Modern::Error::BEGIN@111 which was called: # once (4µs+9µs) by Sub::Quote::_clean_eval at line 111
(do { no warnings "void"; package Type::Tiny; (do { package Type::Tiny; defined($value) and do { ref(\$value) eq 'SCALAR' or ref(\(my $val = $value)) eq 'SCALAR' } }) or Type::Tiny::_failed_check($isa_check_for_instance_5flocation, "Str", $value, "attribute_name","instance_location","attribute_step","isa check","mgaca","0","varname","\$args->{\"instance_location\"}"); $value }),
# spent 13µs making 1 call to JSON::Schema::Modern::Error::BEGIN@111 # spent 9µs making 1 call to warnings::unimport
112 $value
113}
114)),
11542171.49ms(exists $args->{"keyword"} and ($new->{"keyword"} = scalar do { my $value = $args->{"keyword"};
116168706.04ms219µs
# spent 11µs (3+8) within JSON::Schema::Modern::Error::BEGIN@116 which was called: # once (3µs+8µs) by Sub::Quote::_clean_eval at line 116
(do { no warnings "void"; package Type::Tiny; ((do { package Type::Tiny; defined($value) and do { ref(\$value) eq 'SCALAR' or ref(\(my $val = $value)) eq 'SCALAR' } } or (!defined($value)))) or Type::Tiny::_failed_check($isa_check_for_keyword, "Str|Undef", $value, "attribute_name","keyword","attribute_step","isa check","mgaca","0","varname","\$args->{\"keyword\"}"); $value }),
# spent 11µs making 1 call to JSON::Schema::Modern::Error::BEGIN@116 # spent 8µs making 1 call to warnings::unimport
117 $value
118}
119)),
12042171.42ms(exists $args->{"keyword_location"} and ($new->{"keyword_location"} = scalar do { my $value = $args->{"keyword_location"};
121168706.58ms218µs
# spent 11µs (4+7) within JSON::Schema::Modern::Error::BEGIN@121 which was called: # once (4µs+7µs) by Sub::Quote::_clean_eval at line 121
(do { no warnings "void"; package Type::Tiny; (do { package Type::Tiny; defined($value) and do { ref(\$value) eq 'SCALAR' or ref(\(my $val = $value)) eq 'SCALAR' } }) or Type::Tiny::_failed_check($isa_check_for_keyword_5flocation, "Str", $value, "attribute_name","keyword_location","attribute_step","isa check","mgaca","0","varname","\$args->{\"keyword_location\"}"); $value }),
# spent 11µs making 1 call to JSON::Schema::Modern::Error::BEGIN@121 # spent 7µs making 1 call to warnings::unimport
122 $value
123}
124)),
125421732.2ms(exists $args->{"mode"} and ($new->{"mode"} = scalar do { my $value = $args->{"mode"};
1262134µs219µs
# spent 12µs (5+7) within JSON::Schema::Modern::Error::BEGIN@126 which was called: # once (5µs+7µs) by Sub::Quote::_clean_eval at line 126
(do { no warnings "void"; package Type::Tiny; ((defined($value) and !ref($value) and $value =~ m{\A(?:(?:evaluate|traverse))\z})) or Type::Tiny::_failed_check($isa_check_for_mode, "Enum[\"traverse\",\"evaluate\"]", $value, "attribute_name","mode","attribute_step","isa check","mgaca","0","varname","\$args->{\"mode\"}"); $value }),
# spent 12µs making 1 call to JSON::Schema::Modern::Error::BEGIN@126 # spent 7µs making 1 call to warnings::unimport
127 $value
128}
129)),
130 return $new;
131 }
13211µs $$_UNQUOTED = \&new;
133}
13415µs1;
135
136;